home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI IndiZone 2
/
SGI IndiZone 2.iso
/
OutOfBox.idb
/
usr
/
people
/
tour
/
oob
/
scripts
/
memsize.z
/
memsize
Wrap
Text File
|
1994-12-16
|
296b
|
16 lines
#!/bin/csh -f
# Get number megabytes of main memory
@ mbytes = `hinv | grep "Main memory" | awk '{print $4}'`
#echo Memory = $mbytes Mb
# Test for minimum memory config
# this is set from 16 to 0 for Jay
@ minmemory = 0
if ($mbytes < $minmemory) then
echo NotEnough
else
echo MemoryOK
endif